home *** CD-ROM | disk | FTP | other *** search
- MyLib/stpcpy MyLib/stpcpy
-
- NAME
- stpcpy - copy a string
-
- SYNOPSIS
- #include <string.h>
-
- char *stpcpy(char *Destination, const char *Source);
-
- FUNCTION
- This function copies a string from Source to Dest.
-
- INPUTS
- Dest - pointer to the destination area
- Source - pointer to the source string
-
- RESULT
- A pointer to the end of the copied string is returned, i.e.
- a pointer to the terminating '\0' of Dest.
-
- SEE ALSO
- strcpy
-